NoSQL operator: addrow

Appends a new empty record to a NoSQL table.

Usage: addrow [options]

Options:
    --input (-i) 'file'
      Read input from 'file' instead of STDIN.

    --output (-o) 'file'
      Write output to 'file' instead of STDOUT.

    --help (-h)
      Display this help text.

    --no-header (-N)
      Remove header from output.

    --highlight (-H)
      The new row is filled with '_' characters, to help the user
      entering the new data without overriding the TAB delimiters.
      This option is used mostly by 'edittable'.

    --key (-K) 'string'
      Set the leftmost field to 'string' in the new row.
      Any NoSQL special characters in 'string' are
      automatically escaped.

    --prime (-p)
      Print only the table header and a new empty row on
      output.

    --conditional (-c)
      Append the new row only if the specified key value does
      not exist yet. Option '-K' is also required.

    --delete='string' (-d 'string')
      Set the second field value to 'string' in the newly
      created row. If 'string' is not specified it defaults to
      '..DEL..'. This behaviour is used by the 'update'
      operator.
Back